#menuBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    height: 70px;
}


/* Logo  */

#menuBar #rnLogo img {
    width: 150px;
}


/* Menu  */

#menuBar #menu {
    z-index: 1000 !important;
    height: 100%;
}

#menuBar #menu ul {
    height: 100%;
    display: flex;
    list-style: none;
    align-items: center;
}

#menuBar #menu ul li {
    margin-left: 40px;
}

#menuBar #menu ul li a {
    text-decoration: none;
    color: var(--txt-color1);
}

#menuBar #menu ul li a:hover {
    color: var(--txt-color2);
    border-color: var(--txt-color2) !important;
    font-weight: bold;
}


/* Common  */

#menuBar .active {
    font-weight: bold;
    color: var(--txt-color2) !important;
}


/* Drop Down  */

.dropbtn {
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    padding-top: 1.6rem;
    margin-left: -2rem;
    display: none;
    position: absolute;
    background-color: white;
    z-index: 1;
    width: 170px;
    align-items: center;
    justify-content: center;
    font-family: var(--t-font1);
    font-size: 1rem;
    color: var(--txt-color4) !important;
}

.dropdown-content div {
    display: flex;
    align-items: center;
    height: 40px;
    padding-left: 15px;
    border-bottom: 0.1rem solid rgba(122, 122, 122, 0.2);
}

.dropdown-content a {
    color: var(--txt-color4) !important;
    display: block;
    text-align: center;
}

.dropdown-content a:hover .dropdown-content div {
    background-color: var(--txt-color3) !important;
    color: white !important;
}

.dropdown:hover .dropdown-content {
    display: block;
    position: fixed;
}


/* Sticky  */

.sticky {
    position: fixed;
    z-index: 1000;
    overflow: hidden;
    top: 0;
    background-color: white;
    width: 100%;
}


/* Slider Button  */

#menuBar #click,
#menuBar label {
    display: none;
}

#menuBar #click2 {
    display: none;
}

#menuBar label i {
    color: var(--txt-color2);
    font-size: 25px;
}

#menuBar .fa-angle-down {
    font-size: 15px;
    color: var(--txt-color1);
}


/* Responsive  */

@media (max-width: 768px) {
    #topBar {
        z-index: 10;
    }
    #menuBar {
        font-size: 0.8rem;
    }
    .sticky {
        overflow: visible;
    }
    .sticky #menu {
        top: 70px !important;
    }
    #menuBar label {
        display: block;
    }
    #menuBar #menu {
        display: none;
        right: 0;
        top: 110px;
        width: 100%;
        /* text-align: center; */
        position: absolute;
        height: 180px;
        /* border: 2px solid red; */
        float: left;
        /* left: 100%; */
        background-color: white;
        animation: animate 1s;
    }
    #click:checked~.menu-btn i:before {
        content: "\f00d";
    }
    @keyframes animate {
        from {
            right: 20%;
        }
        to {
            right: 0%;
        }
    }
    #menuBar #menu ul {
        display: block;
    }
    #menuBar #menu ul li a {
        transition: all 0.3s ease;
        /* transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); */
    }
    #menuBar #menu ul li {
        padding: 20px 0px;
        padding-bottom: 1rem;
        background-color: white;
        border-bottom: 0.1rem solid rgba(122, 122, 122, 0.1);
        margin-left: 0px;
        padding-left: 40px;
    }
    .dropbtn {
        border: none !important;
    }
    .dropdown {
        position: relative;
        display: block;
    }
    .dropdown-content {
        font-size: 0.8rem;
        display: none;
        position: relative;
        background-color: white;
        color: var(--txt-color1) !important;
        width: 100%;
    }
    .dropdown-content div {
        display: block;
        position: relative;
        padding-left: 15px;
        border-bottom: 0.1rem solid rgba(122, 122, 122, 0.1) !important;
        border: none;
        color: var(--txt-color1) !important;
    }
    .dropdown-content div:last-child {
        border: none !important;
        margin-bottom: -1rem !important;
    }
    .dropdown-content div a {
        margin-top: 20px;
        margin-bottom: 20px;
        color: var(--txt-color1) !important;
        width: 100%;
        text-align: left;
        padding-left: 40px;
    }
}

@media (max-width: 700px) {
    #menuBar {
        padding: 0px 15px !important;
    }
}